home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / texts / dosman121 / man / backtick < prev    next >
Text File  |  1995-05-06  |  2KB  |  51 lines

  1.               BackTick (2.x/3.x ONLY) (CLI Function)
  2.  
  3.  
  4.         NAME
  5.  
  6.             BackTick- Allows you to include the text output of 
  7.         one command to be the input of another command.
  8.  
  9.         SYNOPSIS
  10.             SomeCLICommand `AnotherCommand`
  11.  
  12.         DESCRIPTION
  13.             This is a new and important feature of 2.x/3.x. 
  14.         BackTick lets you insert the text output of one command 
  15.         to be the input of another command. For instance, if you 
  16.         wanted to print the contents of the Work:ESCOM directory 
  17.         with an informative header you would type this:
  18.  
  19.             ECHO >prt: "The directories in work are:" `Dir 
  20.         Work:ESCOM`
  21.  
  22.             It's a good idea to know where this key is, so I'll 
  23.         tell you. It is the key right above the Tab key. The 
  24.         unshifted version of that key is the BackTick (`), the 
  25.         shifted version is the Tilde (~).  If you try to use the 
  26.         parenthesis key (') your command will fail. There is a 
  27.         difference between those two keys even though they look 
  28.         similar on the screen.
  29.  
  30.             The backtick command always evaluates itself at the 
  31.         time it is issued. If you wish to have the backtick 
  32.         command evaluated after several other commands have been 
  33.         issued you must place the asterix (*) escape character 
  34.         before each backtick.
  35.  
  36.             For instance, lets say you want to create an alias 
  37.         which displays the contents of the Gould:Loser directory. 
  38.         You would type:
  39.  
  40. Alias grovel Echo "Contents of the Loser directory is: *`dir Gould:Loser*`
  41.  
  42.             Now, whenever you want to see what is in that 
  43.         directory you merely type 'grovel' and it will be shown.  
  44.         But, if you don't include the asterixes then any changes 
  45.         made to the Gould:Loser directory will not be reflected. 
  46.         You will only see what was in that directory when the 
  47.         Alias was first made.
  48.  
  49.             With some experimentation you will find this DOS 
  50.         function to be one of the most useful.
  51.